home *** CD-ROM | disk | FTP | other *** search
- on mouseEnter
- set the cursor of sprite 52 to 280
- set the visible of sprite 49 to true
- end
-
- on mouseLeave
- set the cursor of sprite 52 to -1
- set the visible of sprite 49 to FALSE
- end
-
- on mouseDown
- global gPanomovieID,angolo
- Repeat while the mousedown
- put QTVRGetPanAngle(gPanomovieID) into angolo
- put value(angolo) into angolo
- put angolo-1 into angolo
- put string(angolo) into angolo
- QTVRSetPanAngle(gPanomovieID,angolo)
- QTVRSetTransitionMode(gPanomovieID,"swing")
- QTVRSetTransitionSpeed(gPanomovieID,"15")
- QTVRUpdate(gPanomovieID)
- end repeat
- end
-
- on mouseUp
- QTVRSetTransitionMode(gPanoMovieId,"normal")
- QTVRUpdate(gPanoMovieID)
- end